|
|
|
|
Handled Field, DragDetectedEventArgs Class |
Defines whether the event handler handled the event. This value can be modified by the DragDetected event handler.
Syntax DragDetectedEventArgs Class (Softelvdm.SftTreeNET)
VB |
Public Property Handled As Boolean |
C# |
public bool Handled; |
C++ |
public: bool Handled; |
Field Value
Set to True if the event handler has processed the event, otherwise False. The default is False.
Comments
The Handled field defines whether the event handler handled the event. This value can be modified by the DragDetected event handler.
Default processing normally performed by the tree control should no longer take place (True), otherwise False and the tree control performs its default actions for the current event.
Instead of setting Handled to True, an application can call the CancelMode method while handling an event, which has the effect of setting Handled to True.